Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632702 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/158 - Maze Game

style.css cody/swapnilsparsh/30DaysOfJavaScript/158 - Maze Game/style.css
113 Views
0 Comments
html,
body {
width: 100vw;
height: 100vh;
position: fixed;
padding: 0;
margin: 0;
top: 0;
index.html cody/swapnilsparsh/30DaysOfJavaScript/158 - Maze Game/index.html
307 Views
0 Comments
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Maze Game</title>
<link rel="stylesheet" href="./style.css">

</head>
script.js cody/swapnilsparsh/30DaysOfJavaScript/158 - Maze Game/script.js
174 Views
0 Comments
function rand(max) {
return Math.floor(Math.random() * max);
}

function shuffle(a) {
for (let i = a.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1));
[a[i], a[j]] = [a[j], a[i]];